home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DJGPP / DJSRC111.ZIP / go32 / trace.h < prev    next >
C/C++ Source or Header  |  1993-10-17  |  262b  |  18 lines

  1. /* This is file TRACE.H */
  2. /* This is used to assist in tracking down hangs in go32 */
  3.  
  4. #ifdef TRACE
  5. #undef TRACE
  6. #endif
  7.  
  8. #ifdef DOTRACE
  9.  
  10. #define TRACE do_trace(__LINE__, __FILE__)
  11. void do_trace(int, const char *);
  12.  
  13. #else
  14.  
  15. #define TRACE
  16.  
  17. #endif
  18.